Std 12th IT Subject (Commerce Stream)
<!DOCTYPE html>
<html>
<head>
<title>Video with controls</title>
</head>
<body>
<h1>Video With Single Source</h1>
<video width="150px" height="150px" autoplay>
<source src="Video.mp4" type="video/mp4">
</video>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Video with controls</title>
</head>
<body>
<h1>Video With Multiple Source</h1>
list of Video files
<ol>
<li>Video.mp4</li>
<li>Video.ogg</li>
<li>Video.webm</li>
</ol>
<video width="300px" height="300px" autoplay controls>
<source src="Video.mp4" type="video/mp4">
<source src="Video.ogg" type="video/ogg">
<source src="Video.webm" type="video/webm">
Your computer doesn't support Video file
</video>
</body>
</html>